home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_sol_comdoors.cog < prev    next >
Text File  |  1999-11-15  |  803b  |  38 lines

  1. # Jones 3D Cog Script
  2. #
  3. # SOL_ComDoors.cog
  4. #
  5. # just lights up the mine doors in comFalls
  6. #
  7. # [TRM]
  8. #
  9. # (C) 1999 LucasArts Entertainment Co. All Rights Reserved
  10. # ========================================================================================
  11.  
  12. symbols
  13.  
  14.     message     startup
  15.  
  16.     thing       doorL                              
  17.     thing       doorR
  18.    
  19.     vector      color       local
  20.     
  21. end
  22.  
  23. # ========================================================================================
  24. code
  25.  
  26. startup:
  27.  
  28.     color = VectorSet(0.3, 0.3, 0.2);
  29.     SetThingLight(doorL, color, 0.001, 2.0);
  30.     SetThingLight(doorR, color, 0.001, 2.0);
  31.     
  32.     return;
  33.         
  34. # ========================================================================================
  35.  
  36. end
  37.  
  38.